home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex43.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  198 b   |  11 lines

  1. Program Example43;
  2.  
  3. { Program to demonstrate the Odd function. }
  4.  
  5. begin
  6.   If Odd(1) Then 
  7.     Writeln ('Everything OK with 1 !');
  8.   If Not Odd(2) Then 
  9.     Writeln ('Everything OK with 2 !'); 
  10. end.
  11.